home *** CD-ROM | disk | FTP | other *** search
- ; Delete any users who have no mail credit and
- ; have not called within the last 30-60 days, depending on number of calls
-
- print "Name$09$09Last Called$09$09Daysago$09Calls"
- print "----$09$09-----------$09$09-------$09-----"
- end
- run
-
- ifeq @credit 0
- set @var0 20
- add @var0 @calls
- iflt @var0 30
- set @var0 30
- else
- ifgt @var0 60
- set @var0 60
- endif
- endif
- ifgt @daysago @var0
- set @delflg1 @on
- print '@name$09@lastcall$09@daysago$09@calls'
- endif
- endif
- run
-
- purge
- end
- run
-
-
- ; Twit any disgraced users who've gotten their warnings,
- ; and upgrade any normal users who've been good contributors.
-
- print
- print "Privilege changes:"
- end
- run
-
- ifeq @priv @disgraced
- ifgt @calls 1
- set @priv @twit
- print "@name demoted from disgraced to twit."
- endif
- else
- ifeq @priv @normal
- ifgt @uploads 256
- set @priv @privel
- print "@name promoted from normal to privel."
- endif
- endif
- endif
- run
-